CI: disable introspection with mingw to avoid flaky builds
authorChristoph Reiter <reiter.christoph@gmail.com>
Wed, 6 May 2020 18:33:46 +0000 (20:33 +0200)
committerChristoph Reiter <reiter.christoph@gmail.com>
Wed, 6 May 2020 18:34:39 +0000 (20:34 +0200)
g-i has started to fail and it's not clear why, so disable it for
now to keep the build green.

See https://gitlab.gnome.org/GNOME/gobject-introspection/-/issues/340

.gitlab-ci/test-msys2.sh

index 554091bc21ece8d740c853a92a6d354414fcff12..8008443d18e748abe7c33c89695abe980983cc57 100644 (file)
@@ -45,11 +45,14 @@ export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"
 ccache --zero-stats
 ccache --show-stats
 export CCACHE_DISABLE=true
+# FIXME: introspection disabled for now because of
+# https://gitlab.gnome.org/GNOME/gobject-introspection/-/issues/340
 meson \
     -Dx11-backend=false \
     -Dwayland-backend=false \
     -Dwin32-backend=true \
     -Dvulkan=no \
+    -Dintrospection=false \
     --werror \
     _build
 unset CCACHE_DISABLE